MathCeiling

 

The 'MathCeiling' function rounds up the input number to the nearest integer.

 

int @MathCeiling(double value);

 

Parameters

double value : value that you want to calculate

 

Return Value

calculated result

 

Example

d = @MathCeiling(1.23456);

Description : '1.23456' is rounded up to two decimal places. '2', the calculated result, is stored in the variable named 'd'.

 

Reference

@abs()

@acos()

@asin()

@atan()

@atan2()

@cos()

@log()

@log10()

@MathRound()

@sin()

@sqrt()

@tan()